home *** CD-ROM | disk | FTP | other *** search
- /*
- messengr.h
-
- Message retrieval system
-
- C++/Views 2.0 Demo
- Copyright (c) 1992, by Liant Software Corp.
- ALL RIGHTS RESERVED.
-
- Revision History:
- -----------------
- */
-
- #ifndef messengr_h
- #define messengr_h
- #include "defs.h"
- #include "strm.h"
-
- class VFile;
- class VTagStream;
- class VDictionary;
-
- class Messenger {
- private:
- VStream currMsg;
-
- VFile *msgFile;
- VTagStream *tagStrm;
- VDictionary *idxDict;
-
- long lastoffs;
-
- public:
- Messenger(char *filename);
- ~Messenger();
-
- VStream &getMessage(char *item);
- };
-
- #endif /* messengr_h */
-